home *** CD-ROM | disk | FTP | other *** search
- #pragma once
- /*****
- *
- * AEHandlers.h
- *
- * This is a support file for "Grant's CGI Framework".
- * Please see the license agreement that accompanies the distribution package
- * for licensing details.
- *
- * Copyright ©1995,1996 by Grant Neufeld
- * grant@acm.com
- * http://arpp.carleton.ca/grant/
- *
- *****/
-
- /*** FUNCTION PROTOTYPES ***/
-
- pascal OSErr doAEOpenApp ( AppleEvent *, AppleEvent *, long );
- pascal OSErr doAEOpenDoc ( AppleEvent *, AppleEvent *, long );
- pascal OSErr doAEPrintDoc ( AppleEvent *, AppleEvent *, long );
- pascal OSErr doAEQuitApp ( AppleEvent *, AppleEvent *, long );
- pascal OSErr doAECGISearchDoc ( AppleEvent *, AppleEvent *, long );
-
- OSErr AEInstallHandlers ( void );
-
- /*** EXTERNAL USER DEFINED FUNCTIONS ***/
-
- p_export OSErr CustomOpenDocument ( FSSpec * );
-
- #if !(kCompileWithout_MY_Names)
- #define MyOpenDocument CustomOpenDocument
- #endif
-
-
- /***** EOF *****/
-